func golang.org/x/net/http2.streamError
24 uses
golang.org/x/net/http2 (current package)
errors.go#L82: func streamError(id uint32, code ErrCode) StreamError {
frame.go#L970: return nil, streamError(fh.StreamID, ErrCodeProtocol)
frame.go#L1056: return nil, streamError(fh.StreamID, ErrCodeProtocol)
server.go#L1311: sc.resetStream(streamError(st.id, ErrCodeNo))
server.go#L1519: return sc.countError("data_flow", streamError(f.Header().StreamID, ErrCodeFlowControl))
server.go#L1593: return sc.countError("bad_flow", streamError(f.StreamID, ErrCodeFlowControl))
server.go#L1618: sc.closeStream(st, streamError(f.StreamID, f.ErrCode))
server.go#L1791: return sc.countError("data_flow", streamError(id, ErrCodeFlowControl))
server.go#L1799: return sc.countError("closed", streamError(id, ErrCodeStreamClosed))
server.go#L1808: return sc.countError("data_flow", streamError(id, ErrCodeFlowControl))
server.go#L1816: return sc.countError("send_too_much", streamError(id, ErrCodeProtocol))
server.go#L1821: return sc.countError("flow_on_data_length", streamError(id, ErrCodeFlowControl))
server.go#L1828: return sc.countError("body_write_err", streamError(id, ErrCodeStreamClosed))
server.go#L1941: return sc.countError("headers_half_closed", streamError(id, ErrCodeStreamClosed))
server.go#L1969: return sc.countError("over_max_streams", streamError(id, ErrCodeProtocol))
server.go#L1976: return sc.countError("over_max_streams_race", streamError(id, ErrCodeRefusedStream))
server.go#L2057: return sc.countError("trailers_not_ended", streamError(st.id, ErrCodeProtocol))
server.go#L2061: return sc.countError("trailers_pseudo", streamError(st.id, ErrCodeProtocol))
server.go#L2070: return sc.countError("trailers_bogus", streamError(st.id, ErrCodeProtocol))
server.go#L2085: return sc.countError("priority", streamError(streamID, ErrCodeProtocol))
server.go#L2147: return nil, nil, sc.countError("bad_connect", streamError(f.StreamID, ErrCodeProtocol))
server.go#L2160: return nil, nil, sc.countError("bad_path_method", streamError(f.StreamID, ErrCodeProtocol))
server.go#L2244: return nil, nil, sc.countError("bad_path", streamError(st.id, ErrCodeProtocol))
transport.go#L2875: serr := streamError(cs.ID, f.ErrCode)